@media screen and (min-width:1199px) and (max-width:3000px) {
	body{
		overflow-x: hidden;
	}
}

.banner {
	width: 100%;
	min-width: 1200px;
	display: block;
	height: 900px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.banner .hds {
	height:20px; 
	overflow:hidden; 
	position:absolute; 
	left:50%;
	max-width: 50%;
	margin-left: -600px;
	bottom:300px; 
	z-index:1;
	text-align: center; 
	z-index: 999;
	display: none;
}
.banner .hds ul li {
	display: inline-block;
	margin: 0 10px;
	width: 18px;
	height: 7px;
	border-radius: 10px;
	cursor: pointer;
	background: rgba(255,255,255,0.5);
}
.banner .hds ul li.on {
	background: #fff;
}
.banner .bds ul li {
	width: 100%;
	height: 900px;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all ease-in-out 1s;
	z-index: 99;
}
.banner .prev { 
	position:absolute; 
	left:50%; 
	bottom:20px; 
	display:block; 
	width:36px; 
	height:36px; 
	margin-left: -50px;
	z-index: 3;
	border-radius: 50%;
	filter:alpha(opacity=50);   
	-moz-opacity:0.5;   
	-khtml-opacity: 0.5;   
	opacity: 0.5;  
	transform: rotate(180deg);
	-ms-transform: rotate(180deg); /* IE 9 */
	-webkit-transform: rotate(180deg); /* Safari and Chrome */
	background:#27a641 url(../img/next.png) no-repeat center;
}
.banner .next{ 
	position:absolute; 
	right:50%; 
	bottom:20px; 
	margin-right: -50px; 
	display:block;
	width:36px; 
	height:36px;
	border-radius: 50%;
	z-index: 3;
	filter:alpha(opacity=50);   
	-moz-opacity:0.5;   
	-khtml-opacity: 0.5;   
	opacity: 0.5;  
	background:#27a641 url(../img/next.png) no-repeat center;
}
.banner .prev:hover {
	filter:alpha(opacity=100);   
	-moz-opacity:1;   
	-khtml-opacity: 1;   
	opacity: 1; 
}
.banner .next:hover {
	filter:alpha(opacity=100);   
	-moz-opacity:1;   
	-khtml-opacity: 1;   
	opacity: 1; 
}


.header {
	position: absolute;
	top: 30px;
	left: 0;
	width: 100%;
	z-index: 2;
}
.header .logo {
	display: block;	
}
.header .nav {
	display: block;
	margin-left: 150px;
	margin-top: 20px;
}
.header .nav ul li {
	display: block;
	float: left;
}
.header .nav ul li a {
	padding: 0 15px 20px 15px;
	margin-left: 10px;
	display: block;
	font-size: 16px;
	color: #fff;
	position: relative;
}
.header .nav ul li a:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: #1fae3e;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.header .nav ul li a.on {
	color: #1fae3e;
	font-weight: bold;
}
.header .nav ul li a.on:before {
	width: 100%;
}
.header .nav ul li a:hover {
	color: #1fae3e;
	font-weight: bold;
}
.header .nav ul li a:hover::before {
	width: 100%;
}

.header .evm {
	display: block;
	margin-top: 23px;
}
.header .evmboxs {
	position: absolute;
	right: 50%;
	margin-right: -600px;
	top: 65px;
	z-index: 3;
	display: none;
}
.header .evmboxs ul li {
	display: block;
	float: left;
	margin-left: 20px;
	width: 80px;
	height: 80px;
	overflow: hidden;
	border:5px solid #fff;
}
.header .evmboxs ul li img {
	width: 100%;
	display: block;
}

.mt60 {
	margin-top: 70px;
}

.firm {
	background: #f6fbf5;
	padding: 60px 0 80px 0;
}
.title {
	display: block;
	text-align: center;
}
.title h3 {
	font-size: 36px;
}
.title span {
	display: block;
	color: #b3b3b3;
	font-size: 14px;
	text-transform: uppercase;
	margin-top:10px;
}

.firm .list {
	margin-top: 40px;
	position: relative;
}
.firm .list .bd  {
	height:300px;
	overflow: hidden;
}
.firm .list .bd ul li {
	display: block;
	float: left;
	position: relative;
}
.firm .list .bd ul li:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.1);
	z-index: 99;
}
.firm .list .bd ul li:hover::before {
	display: none;
}

.firm .list .bd  ul li a {
	display: block;
	position: relative;
	z-index: 9;
}
.firm .list .bd  ul li .imgs {
	width: 400px;
	height: 230px;
	display: block;
	position: relative;
	overflow: hidden;
}
/*.firm .list .bd ul li .imgs:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.5);
	z-index: 999;
}*/
.firm .list .bd ul li .imgs img {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 99;
}
.firm .list .bd  ul li .st {
	display: block;
	height: 70px;
	line-height: 70px;
	font-size: 16px;
	color: #333;
	text-align: center;
}

.firm .list .hd {
	height:20px; 
	overflow:hidden; 
	position:absolute; 
	left:50%;
	max-width: 50%;
	transform: translate(-50%, -50%); 
	bottom:-65px; 
	z-index:1;
	text-align: center; 
	z-index: 99;
}
.firm .list .hd ul li {
	display: inline-block;
	margin: 0 10px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	cursor: pointer;
	background: none;
	border:1px solid #666;
	text-indent:-999px;
}
.firm .list .hd ul li.on {
	background: #27a641;
	border:1px solid #27a641;
}

.farm {
	margin-top: 60px;
}
.farm .left {
	width: 625px;
	height: 570px;
	position: relative;
}
.farm .left .bd {
	display: block;
}
.farm .left .bd ul li {
	width: 100%;
	height: 570px;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all ease-in-out 1s;
	z-index: 99;
}
.farm .left .prev { 
	position:absolute; 
	left:0%; 
	top: 50%;
	display:block; 
	width:36px; 
	height:36px; 
	margin-top: -18px;
	z-index: 3;
	filter:alpha(opacity=80);   
	-moz-opacity:0.8;   
	-khtml-opacity: 0.8;   
	opacity: 0.8;  
	transform: rotate(180deg);
	-ms-transform: rotate(180deg); /* IE 9 */
	-webkit-transform: rotate(180deg); /* Safari and Chrome */
	background:#27a641 url(../img/next.png) no-repeat center;
}
.farm .left .next{ 
	position:absolute; 
	right:0%; 
	top: 50%;
	margin-top: -18px;
	display:block;
	width:36px; 
	height:36px;
	z-index: 3;
	filter:alpha(opacity=80);   
	-moz-opacity:0.8;   
	-khtml-opacity: 0.8;   
	opacity: 0.8;  
	background:#27a641 url(../img/next.png) no-repeat center;
}
.farm .left .prev:hover {
	filter:alpha(opacity=100);   
	-moz-opacity:1;   
	-khtml-opacity: 1;   
	opacity: 1; 
}
.farm .left .next:hover {
	filter:alpha(opacity=100);   
	-moz-opacity:1;   
	-khtml-opacity: 1;   
	opacity: 1; 
}
.farm .left .hd {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 180px;
	height: 60px;
	background: rgba(255,255,255,1);
	color: #333;
	font-size: 16px;
	line-height: 60px;
	text-align: center;
}
.farm .left .hd .pageState span {
	font-size: 20px;
	color: #27a641;
	padding: 0 5px;
	font-weight: bold;
}

.farm .right {
	display: block;
	width: 520px;
}
.farm .right h3 {
	display: block;
	font-size: 26px;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
}
.farm .right .st {
	font-size: 22px;
	color: #666;
	padding: 30px 0;
	height: 30px;
	overflow: hidden;
	line-height: 30px;
}
.farm .right .t-t {
	display: block;
	height: 180px;
	font-size: 14px;
	color: #666;
	line-height: 30px;
	overflow-x: hidden;
}
.farm .right .vi {
	margin-top: 30px;
}
.farm .right .vi h4 {
	font-size: 18px;
}
.farm .right .vi ul {
	margin-top: 20px;
}
.farm .right .vi ul li {
	display: block;
	float: left;
	margin-right: 25px;
	cursor: pointer;
}
.farm .right .vi ul li .img {
	display: block;
	width: 130px;
	height: 130px;
	overflow: hidden;
	position: relative;
}
.farm .right .vi ul li .img:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 99;
}
.farm .right .vi ul li .img i {
	display: block;
	width: 18px;
	height: 22px;
	background: url(../img/bofang.png) no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -11px;
	margin-left: -9px;
	z-index: 999;
}
.farm .right .vi ul li .img i:before {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	border:1px solid #fff;
	border-radius: 50%;
	left: 0;
	top: 0;
	margin-top: -14px;
	margin-left: -18px;
	filter:alpha(opacity=0);   
	-moz-opacity:0;   
	-khtml-opacity: 0;   
	opacity: 0; 
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	z-index: 999;
}
.farm .right .vi ul li img {
	width: 100%;
	display: block;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	position: relative;
	z-index: 9;
}
.farm .right .vi ul li span {
	display: block;
	font-size: 14px;
	text-align:center;
	color: #333;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	margin-top: 5px;
}
.farm .right .vi ul li:hover i::before {
	filter:alpha(opacity=100);   
	-moz-opacity:1;   
	-khtml-opacity: 1;   
	opacity: 1; 
}
.farm .right .vi ul li:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.farm .right .vi ul li:hover i {
	background: url(../img/bofang-H.png) no-repeat;
}

.videos {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}
/*.videos1 {
	display: none;
}
.videos2 {
	display: none;
}
.videos3 {
	display: none;
}*/
.videos:before {
	content: "";
	position: absolute;
	z-index: 99;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}
.videos .videos-con {
	background: #fff;
	width: 352px;
	height: 624px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -176px;
	margin-top: -312px;
	z-index: 999;
	display: none;
}

.videos .close {
	position: absolute;
	right: -50px;
	top: 0px;
	width: 35px;
	height: 35px;
	display: block;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer;
}
.videos .close:hover {
	transform: rotate(180deg);
	-ms-transform: rotate(180deg); /* IE 9 */
	-webkit-transform: rotate(180deg); /* Safari and Chrome */
}
.videos .close img {
	width: 100%;
	display: block;
}

.ours {
	width: 100%;
	height: 667px;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all ease-in-out 1s;
	z-index: 99;
}
.ours h3 {
	padding-top: 100px;
	color: #fff;
	font-size: 20px;
}
.ours .st {
	font-size: 16px;
	color: #fff;
	height: 120px;
	line-height: 30px;
	overflow: hidden;
	margin-top: 30px;
}
.ours ul {
	display: block;
	margin-top: 40px;
}
.ours ul li {
	display: block;
	float: left;
	width: 245px;
	height: 170px;
	overflow: hidden;
	margin-right: 30px;
}
.ours ul li img {
	width: 100%;
	display: block;
}
.ours .line {
	display: block;
	margin-top: 50px;
	height: 10px;
	width: 115px;
	background: #27a641;
}

.slideGroup{ width:100%; text-align:left;  }
.slideGroup .parHd{ height:40px; line-height:40px; position:relative;}
.slideGroup .parHd ul{ float:left; position:absolute; left:0px; top:0px; }
.slideGroup .parHd ul li{ float:left; padding:0 25px; cursor:pointer;  font-size: 16px;}
.slideGroup .parHd ul li.on{ height:40px; color: #1fae3e;}
.slideGroup .slideBox{ zoom:1; padding:60px 0; position:relative;}
.slideGroup .sPrev {
	position: absolute;
	left: -30px;
	top: 50%;
	width:18px;
	height:33px;
	transform: rotate(180deg);
	-ms-transform: rotate(180deg); /* IE 9 */
	-webkit-transform: rotate(180deg); /* Safari and Chrome */
	background:url(../img/next-icon.png) center center no-repeat;
	margin-top: -85px;
	display: block;
	z-index: 999;
}
.slideGroup .sNext {
	position: absolute;
	right: -30px;
	top: 50%;
	width:18px;
	height:33px;
	background:url(../img/next-icon.png) center center no-repeat;
	margin-top: -85px;
	display: block;
	z-index: 999;
}
.slideGroup .parBd ul{ overflow:hidden; zoom:1;   }
.slideGroup .parBd ul li{ margin:0 10px; float:left; _display:inline; overflow:hidden; text-align:center;  }
.slideGroup .parBd ul li .pic{ text-align:center; overflow: hidden;width:280px; height:240px;}
.slideGroup .parBd ul li .pic img{ width: 100%; display:block;-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease; }
.slideGroup .parBd ul li .titles a{ font-size: 16px;height: 50px;line-height: 50px;overflow: hidden; color: #333;display: block;}
.slideGroup .parBd ul li:hover  .titles a{
	color: #27a641;
}
.slideGroup .parBd ul li:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.more {
	display: inline-block;
	width: 120px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #1fae3e;
	border:1px solid #1fae3e;
	border-radius: 5px;
}
.more:hover {
	background:#1fae3e;
	color: #fff;
}

.news {
	display: block;
}
.news .list {
	margin-top: 50px;
	position: relative;
}
.news .list .bd ul li  {
	display: block;
	float: left;
	width: 385px;
	margin: 7px;
}
.news .list .bd ul li a {
	display: block;
}
.news .list .bd ul li .img {
	display: block;
	width: 100%;
	height: 220px;
	overflow: hidden;
}
.news .list .bd ul li .img img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.news .list .bd ul li h3 {
	display: block;
	margin-top: 10px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	color: #333;
	overflow: hidden;
	font-weight: normal;
	padding:0 20px;
}
.news .list .bd ul li .st {
	display: block;
	margin-top: 5px;
	height: 100px;
	font-size: 14px;
	line-height: 25px;
	overflow: hidden;
	color: #333;
	padding:0 20px;
}
.news .list .prev {
	position: absolute;
	left: -30px;
	top: 50%;
	width:18px;
	height:33px;
	transform: rotate(180deg);
	-ms-transform: rotate(180deg); /* IE 9 */
	-webkit-transform: rotate(180deg); /* Safari and Chrome */
	background:url(../img/next-icon.png) center center no-repeat;
	margin-top: -17px;
	display: block;
	z-index: 999;
}
.news .list .next {
	position: absolute;
	right: -30px;
	top: 50%;
	width:18px;
	height:33px;
	background:url(../img/next-icon.png) center center no-repeat;
	margin-top: -17px;
	display: block;
	z-index: 999;
}
.news .list .bd ul li:hover h3 {
	color: #27a641;
}
.news .list .bd ul li:hover .st {
	color: #27a641;
}
.news .list .bd ul li:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.join {
	display: block;
	padding: 70px 0;
	background: #f6fbf5;
}
.join .left {
	background: #27a641;
	width: 460px;
	padding: 140px 70px 50px 70px;
}
.join .left h3 {
	display: block;
	font-size: 40px;
	font-family: "宋体";
	color: #fff;
}
.join .left .st {
	margin-top: 50px;
	font-size: 22px;
	color:rgba(255,255,255,0.8);
	font-weight: normal;
	line-height: 40px;
}
.join .left .phone {
	margin-top: 74px;
	color: #fff;
	font-size: 22px;
	font-weight:bold;
	background: url(../img/phone.png) no-repeat;
	padding-left: 50px;
}
.join .left .more {
	background: #fff;
	text-align: center;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.join .left .more:hover {
	color: #27a641;
	width: 140px;
}

.footer {
	background: url(../img/footer-bg.jpg) no-repeat center center;
	width: 100%;
	min-width: 1200px;
	padding: 100px 0 60px 0;
}
.footer ul li {
	width: 25%;
	text-align: left;
	display: block;
	float: left;
}
.footer ul li h3 {
	font-size: 18px;
	color: #fff;
	font-weight: normal;
	padding-bottom: 10px;
	text-transform: uppercase;
}
.footer ul li span {
	display: block;
	margin-top: 15px;
	line-height: 25px;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
}
.footer ul li span a {
	display: block;
	color: rgba(255,255,255,0.7);
}
.footer ul li span a:hover {
	color: #fff;
}
.footer ul li i {
	display: block;
	padding-left: 30px;
	font-style: normal;
	background: url(../img/footer-icon1.png) no-repeat left center;
}
.footer ul li b {
	display: block;
	padding-left: 30px;
	font-weight: normal;
	background: url(../img/footer-icon2.png) no-repeat left center;
}
.footer ul li strong {
	display: block;
	padding-left: 30px;
	font-weight: normal;
	background: url(../img/footer-icon3.png) no-repeat left center;
}

.footer ul li em {
	display: block;
}
.footer .evmboxs {
	position: absolute;
	right: 50%;
	margin-right: -600px;
	top: 173px;
	z-index: 3;
	display:none;
	background: #fff;
	padding: 5px 0;
}
.footer .evmboxs img {
	display: block;
	float: left;
	margin:0 5px;
	width: 80px;
	height: 80px;
	overflow: hidden;
	border:5px solid #fff;
}



.footer .st {
	margin-top: 100px;
	color: rgba(255,255,255,0.5);
	font-size: 16px;
	text-align: center;
}


.pub-header {
	position: relative;
	top: 0px;
	padding-top:20px;
	border-bottom: 1px solid #ddd;
}
.pub-header .nav ul li a {
	color: #333;
}
.pub-header .nav {
	margin-left: 240px;
	margin-top: 15px;
}
.pub-header .evm {
	margin-top: 19px;
}
.header .nav ul li a {
	padding-bottom: 30px;
}
.pub-banner {
	width: 100%;
	position: relative;
	min-width: 1200px;
}
.pub-banner .imgs {
	display: block;
	width: 100%;
}
.pub-banner .imgs img {
	width: 100%;
	display: block;
}
.pub-banner .texts {
	position: absolute;
	top: 35%;
	width: 1000px;
	left: 50%;
	margin-left: -500px;
	text-align: center;
}
.pub-banner .texts h3 {
	font-size: 50px;
	color: #fff;
}
.pub-banner .texts span {
	display: block;
	margin: 20px 0;
	font-size: 20px;
	color: #fff;
	font-family: "Arial";
	text-transform: uppercase;
}

.pro-list {
	padding: 0 5%;
}
.pro-list ul li {
	display: block;
	float: left;
	width: 25%;
	text-align: center;
}
.pro-list ul li a {
	display: block;
	font-size: 16px;
	padding: 35px 0;
	color: #333;
	border-bottom: 2px solid #f5f5f5;
}
.pro-list ul li a:hover {
	background: #f9f9f9;
	color: #29b246;
	border-bottom: 2px solid #29b246;
}
.pro-list ul li a.curr {
	background: #fff;
	color: #29b246;
	border-bottom: 2px solid #29b246;
}

.pro-con {
	margin-top: 40px;
}
.pro-con .form {
	display: block;
}
.pro-con .form .input {
	padding:10px;
	width: 340px;
	height: 30px;
	line-height: 30px;
	background: #fff;
	border:1px solid #27a641;
	border-radius: 10px;
}
.pro-con .form .btns {
	margin-left: -10px;
	width: 100px;
	height: 52px;
	line-height: 52px;
	background: #27a641;
	border-radius:0 10px 10px 0;
	color: #fff;
	font-size: 16px;
	border:none;
	letter-spacing: 1px;
}


.pro-con .list {
	margin-top: 50px;
}
.pro-con .list ul {
	margin-left: -15px;
}
.pro-con .list ul li {
	display: block;
	float: left;
	margin-left: 15px;
	width: 288px;
	padding-bottom: 15px;
	background: #fff;
	margin-top: 15px;
}
.pro-con .list ul li a {
	display: block;
}
.pro-con .list ul li .img {
	width: 100%;
	height: 268px;
	display: block;
	overflow:hidden; 
}
.pro-con .list ul li .img img {
	width: 100%;
	display: block;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.pro-con .list ul li .st {
	display: block;
	padding-top: 10px;
	height: 30px;
	line-height: 30px;
	color: #333;
	font-size: 16px;
	text-align: center;
}
.pro-con .list ul li:hover .st {
	color: #27a641;
}

.pro-con .list ul li:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}


.pro-show {
	display: block;
}
.pro-show .left {
	display: block;
	width: 240px;
}
.pro-show .left h3 {
	font-size: 20px;
	padding-left: 10px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 3px solid #27a641;
}
.pro-show .left ul li {
	display:block;
	height: 30px;
	line-height: 30px;
	padding: 5px 0;
	position: relative;
}
.pro-show .left ul li a {
	display: block;
	color: #aeaeae;
	font-size: 14px;
	position: relative;
}
.pro-show .left ul li a.curr {
	color: #000;
}
.pro-show .left ul li i {
	display: block;
	position: absolute;
	top: 0%;
	right: 0;
	margin-top: 5px;
	font-style: normal;	 
}
.pro-show .left ul li:hover a {
	color: #000;
}

.pro-show .right {
	width: 860px;
}
.pro-show .right .st {
	height: 30px;
	line-height: 30px;
	padding-bottom: 10px;
	text-align: right;
	font-size: 14px;
	border-bottom: 3px solid #f2f2f2;
}
.pro-show .right .st a {
	color: #b7b4bb;
	margin: 0 10px;
}
.pro-show .right .st i {
	font-style: normal;
}
.pro-show .right .st span {
	margin-left: 10px;
}

.pro-show .right .t-t {
	display: block;
	margin-top: 20px;
	font-size: 16px;
	height: 30px;
	line-height: 30px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #f2f2f2;
}
.pro-show .right .con {
	margin-top: 50px;
	line-height: 30px;
	font-size: 14px;
	width: 100%;
	overflow: hidden;
}
.pro-show .right .con img {
	display: block;
	margin: auto;
}
.pro-show .right .link {
	margin-top: 40px;
}
.pro-show .right .link a {
	display: block;
	height: 30px;
	line-height: 30px;
	margin-bottom: 10px;
	color: #333;
	font-size: 14px;
}
.pro-show .right .link a:hover {
	color: #27a641;
}

.about {
	background: #f5f5f5;
}
.about .pro-list ul li a {
	padding: 25px 0;
}

.about-con {
	padding: 0 34px;
	position: relative;
	margin-top: 110px;
}
.about-con .left {
	position: relative;
	width: 670px;
}
.about-con .left h3 {
	font-size: 24px;
	font-family: "宋体";
}
.about-con .left .st {
	margin-top: 30px;
	color: #e1e1e1;
	font-size: 14px;
	font-family: "Arial";
	letter-spacing: 1px;
}
.about-con .left .t-t {
	font-size: 16px;
	color: #333;
	line-height: 30px;
	margin-top: 40px;
}
/*.about-con .right {
	position: absolute;
	right: 34px;
	top:-100px;
}*/
.about-con .right {
	float: right;
}
.about-con .right img {
	width: 400px;
	height: 407px;
}


.linkOur {
	display: block;
}
.linkOur .left {
	width: 480px;
	padding: 20px;
	background: #f7f7f7;
	font-size: 14px;
}
.linkOur .left h3 {
	font-size: 22px;
	color: #333;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.linkOur .left .st {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
.linkOur .left i {
	display: inline-block;
	vertical-align: middle;
}
#maps {
	float: right;
	width: 650px;
	height: 462px;
}

.leave {
	position: relative;
}
.leave h3 {
	font-size: 24px;
}
.leave .input {
	width: 450px;
	padding: 5px 15px;
	height: 30px;
	line-height: 30px;
	background: #f5f5f5;
	border:none;
}
.leave .textarea {
	width: 98%;
	padding: 10px 1%;
	background: #f5f5f5;
	border:none;
	height: 200px;
}
.leave  .btns {
	display: inline-block;
	width: 120px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	background: #1fae3e;
	color: #fff;
	border: 1px solid #1fae3e;
	border-radius: 5px;
	cursor: pointer;
}
.leave  .btns:hover {
	color: #1fae3e;
	background: #fff;
}
.leave .imgs {
	position: absolute;
	right: 180px;
	top: 70px;
}

.news-list {
	padding-top: 30px;
}
.news-list ul li {
	display: block;
	margin-top: 30px;
	position: relative;
	padding-bottom: 30px;
	border-bottom: 1px solid #fff;
}
.news-list ul li:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #29b246;
	width: 0%;
	height: 1px;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.news-list ul li a {
	display: block;
}
.news-list ul li .img {
	width: 265px;
	height: 130px;
	display: block;
	overflow: hidden;
}
.news-list ul li .img img {
	width: 100%;
	display: block;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.news-list ul li .time {
	display: block;
	font-size: 16px;
	color: #666;
	position: absolute;
	top: 35px;
	left: 300px;
	text-align: center;
}
.news-list ul li .time i {
	color: #29b246;
	font-size: 26px;
	display: block;
	font-style: normal;
	font-weight: bold;
}
.news-list ul li .st {
	display: block;
	position: absolute;
	left: 430px;
	top:10px;
	right: 170px;
}
.news-list ul li .st h3 {
	display: block;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	font-size: 18px;
	color: #333;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.news-list ul li .st .t-t {
	display: block;
	height: 75px;
	line-height: 25px;
	overflow: hidden;
	font-size: 14px;
	color: #333;
	margin-top: 10px;
}
.news-list ul li .aroow {
	display: block;
	position: absolute;
	right: 0;
	top: 35px;
	width: 54px;
	height: 54px;
}
.news-list ul li .aroow img {
	display: block;
	width: 12px;
	height: 22px;
	position: absolute;
	z-index: 999;
	top: 50%;
	margin-top: -11px;
	left: 50%;
	margin-left: -6px;
}
.news-list ul li .aroow:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 54px;
	height: 54px;
	background: #e5f0eb;
	z-index: 9;
}
.news-list ul li .aroow:before {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	width: 42px;
	height: 42px;
	z-index: 99;
	background: #b7d6c9;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.news-list ul li:hover .aroow:before {
	background: #29b246;
}

.news-list ul li:hover  .st h3 {
	color: #29b246;
}
.news-list ul li:hover .img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.news-list ul li:hover::after {
	width: 100%;
}

.news-show {
	margin-top: 50px;
}

.news-show h3 {
	text-align: center;
	font-size: 30px;
	line-height: 30px;
}
.news-show .st {
	margin-top: 30px;
	font-size: 14px;
	text-align: center;
}
.news-show .con {
	margin-top: 50px;
	line-height: 30px;
	width: 100%;
	overflow: hidden;
}
.news-show .con img {
	width: 100%;
}

.news-show .sts {
	float: left;
	width: 50%;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
}
.news-show .sts a {
	display: inline-block;
	color: #333;
	margin-left: 10px;
	width: 370px;
	text-align: center;
	padding: 0 15px;
	background: #f4f4f4;
	font-size: 14px;
	overflow: hidden;
	vertical-align: middle;
}
.news-show .sts a:hover {
	background: #29b246;
	color: #fff;
}


.gg-box {
	width: 100%;
	height: 800px;
	display: block;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all ease-in-out 1s;
    overflow: hidden;
    min-width: 1200px;
    visibility: visible;
}
.gg-box .wrap {
	height: 100%;
}
.gg-box img {
	display: block;
	visibility: visible;
}
.gg1 {
	position: absolute;
	top: 125px;
	right: 0;
	visibility: visible;
}
.gg2 {
	position: absolute;
	top: 320px;
	right: 255px;
	visibility: visible;
}

.gg3 {
	position: absolute;
	top: 190px;
	right: 460px;
}

.gg4 {
	position: absolute;
	top: 190px;
	right: 530px;
}

.gg5 {
	position: absolute;
	top: 190px;
	right: 600px;
}

.gg6 {
	position: absolute;
	top: 190px;
	right: 670px;
}

.gg7 {
	position: absolute;
	top: 190px;
	right: 740px;
}

.gg8 {
	position: absolute;
	top: 190px;
	right: 810px;
}


.gg9 {
	position: absolute;
	top: 190px;
	right: 880px;
}

.gg10 {
	position: absolute;
	top: 190px;
	right: 950px;
}

.gg11 {
	position: absolute;
	top: 190px;
	right: 1020px;
}

.gg12 {
	position: absolute;
	bottom: 120px;
	right: 0px;
}

.gw1 {
	position: absolute;
	top: 80px;
	right: 0;
}

.gw2 {
	position: absolute;
	top: 110px;
	right:260px;
}

.gw3 {
	position: absolute;
	top: 110px;
	right:550px;
}

.gw4 {
	position: absolute;
	top: 110px;
	right:870px;
}



.gif {
	width: 750px;
	height: 470px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -375px;
	margin-top: -235px;
}
.gif img {
	display: block;
	width: 100%;
}


.ys {
	margin-top: 40px;
}
.ys ul li {
	display: block;
	float: left;
	width: 25%;
	text-align: center;
}
.ys ul li img {
	width: 85px;
	height: 85px;
	display: block;
	margin: auto;
}
.ys ul li h3 {
	font-size:16px;
	color: #333;
	height: 30px;
	line-height: 30px;
	margin-top: 10px;
	overflow: hidden;
	font-weight: normal;
}
.ys ul li .st {
	font-size:14px;
	color: #666;
	height: 30px;
	line-height: 30px;

	overflow: hidden;
	font-weight: normal;
}

.myour {
	display: block;
}
.myour .img1 {
	width: 490px;
	height: 680px;
	overflow: hidden;
}
.myour  img {
	width: 100%;
	display: block;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.myour .img2 {
	width: 690px;
	height: 360px;
	overflow: hidden;
}
.myour .img3 {
	margin-top: 20px;
	width: 330px;
	height: 300px;
	overflow: hidden;
	margin-left: 20px;
} 

.myour .img4 {
	margin-top: 20px;
	width: 330px;
	height: 300px;
	overflow: hidden;
} 

.myour .img5 {
	width: 690px;
	height: 470px;
	overflow: hidden;
} 
.myour .img6 {
	margin-left: 20px;
	margin-top: 22px;
	width: 690px;
	height: 186px;
	overflow: hidden;
} 
.myour  img:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.ban {
	width: 100%;
	height: 312px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 99;
	text-align: center;
}

.ban .st {
	width: 690px;
	font-size: 22px;
	color: #fff;
	line-height: 40px;
	display: block;
	margin: auto;
	padding-top: 100px;
}
.pt60 {
	padding-top: 70px;
}

.join-text {
	margin-top: 120px;
	font-size: 16px;
	line-height: 35px;
	padding-bottom: 100px;
}
